home *** CD-ROM | disk | FTP | other *** search
- /* Copyright 2009, Boomtango.com. All Rights Reserved. */
- /* pluginAdvanced.js
- * Responsible for the advanced settings dialog
- */
- var mgr = {
- onLoad: function(){
- this.plugin = window.arguments[0];
- if(this.plugin && this.plugin.onAdvancedLoad){
- this.plugin.onAdvancedLoad(document, document.getElementById("content"));
- }
- },
- onDefault: function(){
- if(this.plugin && this.plugin.onAdvancedDefault){
- this.plugin.onAdvancedDefault(document, document.getElementById("content"));
- }
- },
-
- onOK: function(){
- if(this.plugin && this.plugin.onAdvancedOK){
- this.plugin.onAdvancedOK(document, document.getElementById("content"));
- }
- }
- };
-